* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.awards-hero {
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    overflow: hidden;
    color: #e76a3c;
    text-align: center;
    padding: 70px 20px 60px 20px;
    position: relative;
}

.awards-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.awards-hero-icon {
    background: rgba(231, 106, 60, 0.08);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-hero-icon i {
    color: #e76a3c;
    font-size: 64px;
}

.awards-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 18px;
    color: #e76a3c;
}

.awards-hero p {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 40px;
    color: #e85d8e;
}

.awards-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.awards-btn {
    font-size: 1.2em;
    font-weight: 500;
    padding: 16px 38px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.awards-btn-primary {
    background: #e76a3c;
    color: #fff;
    border: none;
    font-weight: 600;
}

.awards-btn-primary:hover {
    background: #e85d8e;
}

.awards-btn-outline {
    background: transparent;
    color: #e76a3c;
    border: 2px solid #e76a3c;
    font-weight: 600;
}

.awards-btn-outline:hover {
    background: #e76a3c;
    color: #fff;
}

.stats-section {
    background: white;
    padding: 70px 0 60px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    background: #fff;
    padding: 35px 90px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(255, 94, 98, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover::before {
    opacity: 0.08;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 94, 98, 0.2);
}
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff5e8a, #ff9966);
    opacity: 0;
    transition: 0.3s;
    z-index: 0;
}
.stat-icon {
    background: linear-gradient(135deg, #e76a3c 0%, #e85d8e 100%);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: white;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #e76a3c; /* orange for numbers */
}

.stat-label {
    color: #e85d8e; /* pink for labels */
    margin-top: 4px;
}

@media (max-width: 700px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .stat-card {
        width: 100%;
        max-width: 320px;
        margin-bottom: 16px;
    }
}

/* Add to your awards.css or a relevant stylesheet */
.recognition-gallery-section {
    padding: 40px 0 50px 0;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
}

.recognition-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.2em;
}

.recognition-subtitle {
    text-align: center;
    color: #4a4e69;
    font-size: 1.2em;
    margin-bottom: 2em;
}

.recognition-gallery {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.recognition-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.08);
    overflow: hidden;
    width: 430px; /* Increased width */
    min-height: 420px; /* Increased height */
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    transition: box-shadow 0.2s;
}

.recognition-card:hover {
    transform: translateY(-10px) !important;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 60, 0.15);
}

.recognition-card-img {
    position: relative;
    height: 220px; /* Increased image height */
    background: #ffe6f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.recognition-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recognition-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 2px 8px rgba(231, 106, 60, 0.08);
}

.recognition-badge.heart {
    color: #e85d8e;
}

.recognition-badge.leaf {
    color: #4caf50;
}

.recognition-year {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff7f3;
    color: #22223b;
    border-radius: 16px;
    padding: 4px 14px;
    font-size: 1em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(231, 106, 60, 0.08);
}

.recognition-card-content {
    padding: 28px 24px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recognition-card-content h3 {
    font-size: 1.35em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #22223b;
}

.recognition-tag {
    display: inline-block;
    font-size: 1em;
    font-weight: 600;
    border-radius: 12px;
    padding: 4px 16px;
    margin-bottom: 12px;
    margin-right: 6px;
    background: #ffe6f0;
    color: #e85d8e;
}

.recognition-tag.green {
    background: #e6fff0;
    color: #4caf50;
}

.recognition-tag.pink {
    background: #ffe6f0;
    color: #e85d8e;
}

.recognition-card-content p {
    color: #22223b;
    font-size: 1.05em;
    margin-bottom: 18px;
    flex: 1;
}

.recognition-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
    color: #4a4e69;
}

.recognition-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.recognition-stars {
    color: #ffd600;
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 900px) {
    .recognition-gallery {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .recognition-card {
        width: 95%;
        max-width: 400px;
    }
}

/* Add to your awards.css or relevant stylesheet */
.community-impact-section {
    padding: 40px 0 50px 0;
    background: #fff;
}

.community-impact-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.2em;
}

.community-impact-subtitle {
    text-align: center;
    color: #4a4e69;
    font-size: 1.2em;
    margin-bottom: 2em;
}

.community-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.impact-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 20px 28px 20px;
    text-align: center;
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
    transition: all 0.8 ease-in;
    border: 1px solid pink;
}
.impact-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.09);
    opacity: 1;
}
.impact-card-pink {
    background: #fff4f8;
}
.impact-card-green {
    background: #f3fff7;
}
.impact-card-blue {
    background: #f4f8ff;
}
.impact-card-purple {
    background: #f8f4ff;
}

.impact-icon {
    margin-bottom: 18px;
}

.impact-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 8px;
}

.impact-desc {
    color: #4a4e69;
    font-size: 1.08em;
}

/* Responsive */
@media (max-width: 900px) {
    .community-impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Add to your awards.css or relevant stylesheet */
.recognition-quote-section {
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    padding: 70px 20px 40px 20px;
    text-align: center;
}

.recognition-quote-section blockquote {
    color: #e76a3c;
    font-size: 2em;
    font-style: italic;
    font-family: "Segoe UI", "Arial", sans-serif;
    margin: 0 auto;
    line-height: 1.3;
    font-weight: 400;
    max-width: 1050px;
}

.recognition-quote-btn {
    background: #e76a3c;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
    padding: 18px 48px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
}

.recognition-quote-btn:hover {
    background: #e85d8e;
}

/* Responsive */
@media (max-width: 700px) {
    .recognition-quote-section blockquote {
        font-size: 1.2em;
    }
    .recognition-quote-btn {
        font-size: 1em;
        padding: 14px 24px;
    }
}
